b6e633e45d754b326d067f00f60cd3ccc9d93c5d,src/services/org/opennms/netmgt/config/UserFactory.java,UserFactory,init,#,127

Before Change



    public static synchronized void init() throws IOException, FileNotFoundException, MarshalException, ValidationException {
        if (!initialized) {
            reload();
        }
        GroupFactory.init();
        // ViewFactory.init();

After Change


        if (!initialized) {
            GroupFactory.init();
            instance = new UserFactory();
            instance.reload();
            
        }
        // ViewFactory.init();